home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / utils sync / JetSync 1.0 / jetsync-1.0.exe / jetsync-1.0 / setup.dir / help.tcl < prev    next >
Encoding:
Tcl/Tk script  |  1999-09-24  |  1.6 KB  |  70 lines

  1. #! /usr/bin/wish -f
  2.  
  3. # help module for JetSync
  4.  
  5. wm title . "Help"
  6.  
  7. frame .f1
  8. frame .f2
  9. frame .f3
  10.  
  11. pack .f1 -anchor w
  12. pack .f2 -anchor w
  13. pack .f3
  14.  
  15. label .title -text "JetSync Help" -justify left
  16. pack .title -anchor w -pady 10 -padx 10
  17.  
  18. label .text -justify left -wraplength 350 -anchor w
  19. pack .text -anchor w -pady 10 -padx 10
  20.  
  21. case $argv {
  22.   1 {
  23.     .text configure \
  24. -text "Choose one of these options according to the behaviour:\
  25. \n\
  26. \nSynchronize the files:\
  27. \nBidirectional synch. Checks data in both platforms.\
  28. \n\
  29. \nDesktop to PalmPilot:\
  30. \nDesktop overrides Pilot\
  31. \n\
  32. \nPalmPilot to desktop:\
  33. \nPilot overrides Desktop\
  34. \n\
  35. \nDo nothing:\
  36. \n\
  37. Ignore this conduit's behaviour."
  38.   }
  39.   2 {
  40.     .text configure \
  41. -text "Double-click on a conduit name or select it and press \"Change...\" \
  42. to configure that conduit's behaviour for the selected user."
  43.   }
  44.   3 {
  45.     .text configure \
  46. -text "Port: UNIX serial device (usually /dev/cua0 or 1)\
  47. \nSpeed: Value is usually 9600 or 19200"
  48.   }
  49.   4 {
  50.     .text configure \
  51. -text "Always available:\
  52. \nA daemon will be running continuously even when JetSync is closed. This\
  53. daemon will keep track of synchronization and sync, whenever requested by\
  54. the PalmPilot.\
  55. \n\nOnly when JetSync is running:\
  56. \nThis options is identical to the first except the daemon will die when\
  57. JetSync is closed.\
  58. \n\nManual:\
  59. \nHotSync will only proceed when the \"Synchronize\" button in the main\
  60. window is pressed. No daemon is present.\
  61. \n\n\nAny of these options requires JetSync to be restarted to become in\
  62. effect."
  63.   }
  64. }
  65.  
  66. button .close -text "Close" -command "destroy ."
  67. pack .close -pady 10
  68.  
  69. tkwait win .
  70.